home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ ICQ 3.xpl < prev    next >
Text File  |  2000-08-07  |  986b  |  46 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="1"
  3. "COUNT"="1"
  4. "UIPATH"="Internet\Instant Messaging\ICQ"
  5. "NAME"="Email Tagline"
  6. "LANGUAGE"="VBScript"
  7. "VERSION"="1.04"
  8. "TEXT 1"="Tagline"
  9. "DESCRIPTION 1"="You can use this plug-in to change the Email tagline for ICQ (TM)."
  10. "DESCRIPTION 2"="ICQ may be obtained at http://www.icq.com/."
  11. "AUTHOR"="Xteq Systems"
  12. "CONTACTURL"="http://www.xteq.com"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "COMMENT 1"=" "
  15. "COMMENT 2"="Thanks to CptSiskoX for the settings and the idea."
  16.  
  17.  
  18. sPath="HKCU\Software\Mirabilis\ICQ\DefaultPrefs\"
  19. sV1="Email Message"
  20. Sub Plugin_Initialize 
  21.  if RegPathExists(sPath) then
  22.     s=RegReadValue(sPath & sV1)
  23.     SetUIElement 1,s
  24.  else
  25.     Disable
  26.  end if
  27. End Sub
  28.  
  29.  
  30. Sub Plugin_CheckData(ElementIndex)
  31. End Sub
  32.  
  33.  
  34.  
  35. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  36.  s=GetUIElement(1)
  37.  Call RegWriteValue(sPath & sV1,s,1)
  38. End Sub
  39.  
  40.  
  41. Sub Plugin_Terminate 
  42. End Sub
  43.  
  44.  
  45.  
  46.